WARNING: This program has a bug, which means we need to fix it! This bug is a logic error.

RULE: A function will not run until it is called in the program.

  • Click Run and watch the stage to see what's wrong.
  • Nothing happens because there is no Function Call!
  • Debug the program by calling the function. Notice, the function's name is moon().


To navigate the page using the TAB key, first press ESC to exit the code editor.

def moon(): stage.set_background("moon") sprite = codesters.Sprite("rocket") sprite.say("3 - 2 - 1...") stage.wait(1) sprite.say("... blast off!") sprite.move_up(550)
  • Run Code
  • Submit Work
  • Next Activity
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)